home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem
- rem Command Lines to build the CDROM applications
- rem
- if not (%debug%)==(ON) goto label05
- @echo on
- :label05
-
- if (%1)==() goto help
- if (%1)==(BCC) goto bcc
- if (%1)==(bcc) goto bcc
-
- :msc
- nmake S=L M=4 -f makefile
- goto done
-
- :bcc
- make BCC=1 S=l M=4 -f makefile
- goto done
-
- :help
- echo To Use: DOS\ MK [MSC or BCC]
- echo Where: MSC specifies Microsoft C
- echo BCC specifies Borland C
-
- :done
-
-